google.golang.org/grpc.ClientConn.sc (field)

14 uses

	google.golang.org/grpc (current package)
		clientconn.go#L638: 	sc              *ServiceConfig             // Latest service config received from the resolver.
		clientconn.go#L741: 	if cc.sc != nil {
		clientconn.go#L742: 		cc.applyServiceConfigAndBalancer(cc.sc, nil)
		clientconn.go#L796: 			if cc.sc == nil {
		clientconn.go#L806: 	balCfg := cc.sc.lbConfig
		clientconn.go#L1067: 	return getMethodConfig(cc.sc, method)
		clientconn.go#L1073: 	if cc.sc == nil {
		clientconn.go#L1076: 	return cc.sc.healthCheckConfig
		clientconn.go#L1084: 	cc.sc = sc
		clientconn.go#L1089: 	if cc.sc.retryThrottling != nil {
		clientconn.go#L1091: 			tokens: cc.sc.retryThrottling.MaxTokens,
		clientconn.go#L1092: 			max:    cc.sc.retryThrottling.MaxTokens,
		clientconn.go#L1093: 			thresh: cc.sc.retryThrottling.MaxTokens / 2,
		clientconn.go#L1094: 			ratio:  cc.sc.retryThrottling.TokenRatio,